home *** CD-ROM | disk | FTP | other *** search
-
- scriptname="$0"
- step="$1"
- keywords="$2"
- pkglist="$3"
-
- # Source in the standard functions library, ccsSetup.sh
- . ccsSetup.sh
-
- doPostExport() {
- cd /usr/local/mysql
- scripts/mysql_install_db > /dev/null 2>&1
- }
-
- doPreUnExport() {
- /etc/mysqlrc disable > /dev/null 2>&1
- /etc/mysqlrc stop > /dev/null 2>&1
- }
-
- ccs_return_value=0
-
- case "$step" in
- POST_EXPORT) doPostExport ;;
- PRE_UNEXPORT) doPreUnExport ;;
- esac
-
- exit $ccs_return_value
-
-